type net/http.http2Setting

14 uses

	net/http (current package)
		h2_bundle.go#L2093: func (f *http2SettingsFrame) Setting(i int) http2Setting {
		h2_bundle.go#L2095: 	return http2Setting{
		h2_bundle.go#L2136: func (f *http2SettingsFrame) ForeachSetting(fn func(http2Setting) error) error {
		h2_bundle.go#L2151: func (f *http2Framer) WriteSettings(settings ...http2Setting) error {
		h2_bundle.go#L2945: 		f.ForeachSetting(func(s http2Setting) error {
		h2_bundle.go#L3321: type http2Setting struct {
		h2_bundle.go#L3330: func (s http2Setting) String() string {
		h2_bundle.go#L3335: func (s http2Setting) Valid() error {
		h2_bundle.go#L5306: func (sc *http2serverConn) processSetting(s http2Setting) error {
		h2_bundle.go#L7421: 	initialSettings := []http2Setting{
		h2_bundle.go#L7426: 		initialSettings = append(initialSettings, http2Setting{ID: http2SettingMaxHeaderListSize, Val: max})
		h2_bundle.go#L9395: 	err := f.ForeachSetting(func(s http2Setting) error {
		h2_bundle.go#L9801: type http2writeSettings []http2Setting
		h2_bundle.go#L9810: 	return ctx.Framer().WriteSettings([]http2Setting(s)...)